home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / ev_201.zip / MISCFCTS.H < prev    next >
C/C++ Source or Header  |  1993-07-03  |  1KB  |  49 lines

  1. #if !defined (MISCFCTS)           /* Prevents multiple declarations errors */
  2. #define MISCFCTS
  3.  
  4.  
  5. /*
  6.    Module        : MISCFCTS.H
  7.    Version       : 2.0
  8.    Revision date : July 3rd, 1993
  9.    Author(s)     : Rémy Gendron
  10.  
  11.    Description   : Miscellenous functions.
  12. */
  13.  
  14.  
  15. /* Macros ---------------------------------------------------------------- */
  16.  
  17. #include "stdmacro.h"                        /* Standard macro definitions */
  18.  
  19.  
  20. /* TypeDefs -------------------------------------------------------------- */
  21.  
  22. #include "stdtype.h"                          /* Standard type definitions */
  23.  
  24.  
  25. /* Prototypes ------------------------------------------------------------ */
  26.  
  27. #ifdef __cplusplus                     /* Enables linking with C++ modules */
  28. extern "C" {
  29. #endif
  30.  
  31. void far ansicolor       /* Converts color codes to their ANSI equivalents */
  32. (
  33.    int      fore,                 /* Fore and background colors to convert */
  34.    int      back,
  35.    int huge *ansbold,               /* ANSI arguments for the ESC sequence */
  36.    int huge *ansfore,
  37.    int huge *ansback
  38. ) ;
  39.  
  40.  
  41. #ifdef __cplusplus
  42. }
  43. #endif
  44.  
  45.  
  46. /* End Source File ------------------------------------------------------- */
  47.  
  48. #endif
  49.